home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / protos / stropmodule_protos.h < prev    next >
Text File  |  1996-12-15  |  1KB  |  21 lines

  1.  
  2. /* stropmodule.c */
  3. static object *split_whitespace ( char *s , int len , int maxsplit );
  4. static object *strop_splitfields ( object *self , object *args );
  5. static object *strop_joinfields ( object *self , object *args );
  6. static object *strop_find ( object *self , object *args );
  7. static object *strop_rfind ( object *self , object *args );
  8. static object *do_strip ( object *args , int striptype );
  9. static object *strop_strip ( object *self , object *args );
  10. static object *strop_lstrip ( object *self , object *args );
  11. static object *strop_rstrip ( object *self , object *args );
  12. static object *strop_lower ( object *self , object *args );
  13. static object *strop_upper ( object *self , object *args );
  14. static object *strop_capitalize ( object *self , object *args );
  15. static object *strop_swapcase ( object *self , object *args );
  16. static object *strop_atoi ( object *self , object *args );
  17. static object *strop_atol ( object *self , object *args );
  18. static object *strop_atof ( object *self , object *args );
  19. static PyObject *strop_maketrans ( PyObject *self , PyObject *args );
  20. static object *strop_translate ( object *self , object *args );
  21.